home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / convert.zoo / README < prev   
Text File  |  1992-10-01  |  2KB  |  44 lines

  1.  
  2. convert & gst-ar by William Nell
  3. --------------------------------
  4. object file format converter and archiver for gst object files.
  5.  
  6.  
  7. convert
  8. -------
  9. convert a gcc format object file to a gst format object file (or vice-versa)
  10. convert takes 2 arguments, first a the type of format you are converting
  11. to (gcc or gst) and a list of files you want to convert.
  12. (e.g. to convert a file "junk.bin" to gcc format -
  13.       convert gcc junk.bin
  14.  this will automatically create a file called junk.o for you)
  15.  
  16. there is also a -v option which dumps a whole bunch of information about
  17. the file you are converting.
  18.  
  19. I've used this program to convert the entire gnu.olb from gcc to gst format
  20. and link it with my gst linker.  It works pretty well except for a few
  21. known problems. g++ object files probably won't work, if a gst file contains
  22. any ORG directives it won't work.  (There are also some problems if you
  23. have an old version of gcc-ld and you try to link a file that has byte or
  24. word sized relocations)
  25.  
  26.  
  27. gst-ar
  28. ------
  29. A simple version of gcc-ar for gst type libraries.  It takes all the arguments
  30. that gcc-ar accepts but ignores some of them.  It can't move files around,
  31. make a SYMDEF entry, understand before/after flags or date information.
  32. It basically just adds, extracts and deletes.  I'm working on a newer
  33. version that adds date information and other important stuff but I don't
  34. know when (or if) I'll finish it.
  35.  
  36.  
  37. Other stuff
  38. -----------
  39. These programs are free so copy them as much as you like.  Please leave this
  40. readme file with them though.
  41.  
  42. Send any bugs/suggestions to bnell@cadillac.siemens.com
  43.  
  44.